home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / include / mpw / sys / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  175 b   |  14 lines

  1. /* Imitation sys/time.h. */
  2.  
  3. #ifndef __SYS_TIME_H__
  4. #define __SYS_TIME_H__
  5.  
  6. #include <time.h>
  7.  
  8. struct timeval {
  9.   long tv_sec;
  10.   long tv_usec;
  11. };
  12.  
  13. #endif /* __SYS_TIME_H__ */
  14.